/* RESET STYLE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* background-color: rgb(42, 42, 43); */

/* ANIMATION KEYFRAMES */
@keyframes scale {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    width: 100%;
    color: #333;
}

/* HEADER SECTION STYLE */
.header {
    height: 70px;
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2000;
}

.Company-Info {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.bottom-logo {
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.buttom-logo {
    /* transform: scale(2); */
    /* filter: drop-shadow(0 4px 12px rgba(249, 168, 37, 0.25)); */
}

.Company-Name {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: rgb(13, 13, 36);
}

.discription {
    color: rgb(78, 72, 72);
}

.mobile-controls {
    display: none;
}

.desktop-contact {
    list-style: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unlist {
    /* height: 100px; */
    display: flex;
    column-gap: 30px;
    align-items: center;
    justify-content: center;
}

.list {
    list-style: none;
}

/* Base anchor styles */
a {
    text-decoration: none;
    color: rgb(78, 72, 72);
}

/* Animated hover underline for desktop navigation links */
.list a {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: orange;
    transition: width 0.3s ease-in-out;
}

.list a:hover {
    color: orange;
}

.list a:hover::after {
    width: 100%;
}

.button {
    background-color: orange;
    border: none;
    white-space: nowrap;
    padding: 12px 35px;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
}

.button, .send-message, .explore, .partner, .bottom-logo, .service-chip, .re-item, .glass-card, .stat-box, .zigzag-row, button, select {
    cursor: pointer;
}

.button:hover,
a:hover {
    cursor: pointer;
}

/* THE MAIN SECTION */
.main {
    display: flex;
    flex-direction: column;
}

.First-Section {
    position: relative;
}

.building {
    width: 100vw;
    height: 500px;
    object-fit: cover;
    display: block;
}

.purpose-description {
    width: 100vw;
    height: 500px;
    background-color: rgba(13, 13, 36, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: absolute;
    top: 0;
    z-index: 1000;   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    padding: 0 20px;
}

.drive {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.success {
    font-weight: 800;
    font-size: 45px;
    color: white;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1px;
}

.defining {
    font-weight: 800;
    font-size: 45px;
    color: orange;
    text-align: center;
    letter-spacing: -1px;
}

.real {
    width: 520px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 20px;
}

.div-buttons {
    display: flex;
    column-gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

.explore {
    background-color: orange;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.partner {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 11px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner:hover {
    background: white;
    color: rgb(13, 13, 36);
    transform: translateY(-2px);
}


/* SECOND SECTION */
.Second-Section {
    display: flex;
    column-gap: 80px;
    width: 100vw;
    min-height: 600px;
    padding: 80px 10%;
    background-color: #f8f9fa;
    justify-content: center;
    align-items: center;
}

.firstOf-Second {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    width: 50% ;
}

.Architects {
    font-size: 32px;
    font-weight: 800;
    color: rgb(13, 13, 36);
    line-height: 1.2;
}

.letters {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.Sector-Division {
    padding-right: 70px;
    display: flex;
    justify-content: space-between;
}

.div-sector {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.sectors-text {
    color: orange;
    font-size: 17px;
    font-weight: bolder;
}

.sectors-list {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.Meeting-Image {
    width: 550px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


/* THIRD SECTION */
.Third-Section {
    display: flex;
    column-gap: 50px;
    width: 100vw;
    height: 300px;
    align-items: center;
    justify-content: center;
}

.div-vision {
    background-color: orange;
    width: 500px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
}

.Vision {
    font-size: 24px;
    color: white;
    font-weight: 800;
}

.Vision-Letter {
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
}

/* background-color: rgba(20, 20, 41, 0.9); */
.div-mission {
    background-color: rgb(13, 13, 36);
    width: 500px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.Mission {
    font-size: 24px;
    color: white;
    font-weight: 800;
}

.Mission-Letter {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 15px;
}

/* FOURTH SECTION */
.Fourth-Section {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    width: 100vw;
    height: 300px;
    align-items: center;
    justify-content: center; 
    background-color: rgba(0, 0, 0, 0.05);
    padding: 100px;
}

.div-coreHeader {

}

.core-header {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    color: rgb(13, 13, 36);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-values {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
    column-gap: 100px;
}


.value-item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
} 

.core-button {
    background-color: orange;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid orange;
    border-radius: 50%;
    font-size: 20px;
    color: white;
}

.Each-Core {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
}

.Core-Letter {
    color: rgb(78, 72, 72);
    font-size: 12px;
}


/* FIFTH SECTION */
.Fifth-Section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    row-gap: 50px;
    padding: 100px 0;
}

.div-coreInvestment{

}

.core-header {

}

.investment-sectors {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    grid-template-columns: 220px 220px 220px 220px;
    row-gap: 50px;
    column-gap: 50px;
}

.sector-card {
    padding: 30px;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: orange;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: none;
    background-color: orange;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.core-investment {
    font-weight: 800;
    color: rgb(13, 13, 36);
    font-size: 18px;
}

.investment-letter {
    color: #666;
    font-size: 14px; 
    line-height: 1.5;
}


/* SIXTH SECTION */
.Sixth-Section {
    background: linear-gradient(rgba(13, 13, 36, 0.95), rgba(13, 13, 36, 0.95)), url('../../Image/meeting image.jpg') center/cover fixed;
    width: 100vw;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.div-header {

}

.header-philosolophy {
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.Philosophy-Sectors {
    width: 100vw;
    justify-content: center;
    align-items: center;
    display: flex;
    column-gap: 100px;
}

.Each-Philosophy {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    justify-content: center;
}

.div-numberEach {
    height: 40px;
    width: 40px;
    background-color: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paragraph-each {
    color: white;
    font-weight: bolder;
}

.number-philosophy {
    color: white;
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    /* width: 150px; */
}

.letter-philosolophy {
    /* color: white; */
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    width: 150px;
    line-height: 15px;
}

/* SEVENTH SECTION */
.Seventh-Section {
    width: 100vw;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 60px;
    background-color: white;
    padding: 100px 20px;
}

.header-trust {
    color: rgb(13, 13, 36, 0.9);
    font-size: 20px;
    text-align: center;
}

.all-leader {
    display: flex;
    column-gap: 20px;
}

.each-leader {
    width: 300px;
    height: 200px;
    box-shadow: inset 2px 2px 35px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}


/* EIGHTH SECTION */
.Eighth-Section {
    width: 100vw;
    height: 600px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding-top: 100px;
    padding-bottom: 100px;
    column-gap: 100px;
}

.div-connectHeader {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.header-connect {
    font-size: 20px;
    color: rgb(13, 13, 36, 0.9);
}

.connect-letter {
    width: 470px;
}

.div-connectDetails {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.each-contactDetails {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.icon-contact {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    color: white;
    background-color: orange;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-div {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.contact-header {
    font-weight: bold;
    font-size: 15px;
}

.contact-letter {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.form {
    width: 35%;
    height: 450px;
    /* background-color: rgba(255, 255, 255, 0.7); */
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
}

.div-input {

}

.nameInput {
    width: 198px;
    height: 40px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid;
}

.input-column {
    width: 400px;
    height: 40px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid;
}

.inquiry-option {
    width: 400px;
    height: 40px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    border: 1px solid;  
}

.textarea {
    width: 400px;
    height: 80px;
    padding-left: 5px;
    padding-top: 5px;
    border-radius: 5px;
    border: 1px solid;
}

.send-message {
    width: 400px;
    height: 40px;
    background-color: orange;
    border: none; 
    border-radius: 5px;
    color: white;
}


/* NINTH SECTION */
.Ninth-Section {
    background-color: rgb(13, 13, 36, 0.9);
    width: 100vw;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}

.header-conclude {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.conclude-letter {
    width: 500px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 20px;
}

.div-conclude {
    display: flex;
    column-gap: 10px;
}

.explore {

}

.partner {

}


/* TENTH SECTION */
.Tenth-Section {
    width: 100vw;
    height: 250px; 
    background-color: rgb(13, 13, 36);
    display: grid;
    grid-template-columns: 20% 70%;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}

.first-Bottom {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    /* align-items: center; */
    justify-content: center;
    padding-left: 20px;
}

.botton-company {
    display: flex;
    column-gap: 10px;
}

.bottom-logo {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: orange;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.bottom-name {

}

.bottom-Bem {
    color: white;
    font-size: 15px;
    font-weight: bolder;
}

.bottom-venture {

}

.bottom-production {
    color: white;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.bottom-letter {
    width: 250px;
    color: white;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.second-bottom {
    display: flex;
    column-gap: 150px;
    justify-content: center;
    align-items: center;
}

.first-second {
    color: white;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.b-ulist {
    display: flex;
    flex-direction: column;
    row-gap: 15px; /* comfortable line spacing */
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.b-list {
    color: rgba(255, 255, 255, 0.7);
}

.p-list {
    color: rgba(255, 255, 255, 0.7);
}

.pd-list {
    width: 300px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
}